This web method allows you to cancel an activity. You will need to add an activity id that you want to cancel and user email address.
Method | /ProCloudWS.asmx/ActivityItemCancel |
The request body is of type ActivityItemCancel.
Name | Description | Data Type |
---|---|---|
objProviderGUId | This is a unique provider id, which can be obtained from CSS GUId | guid |
strPassword | This is your unique service password which can be obtained from CSS String (min 1 max 50)
| xml:string |
intActivityId | This is an "ActivityId" field which is used to cancel an activity in the system (can be obtained via the ProviderGetOpenOrdersByEmailAddress web method) Integer
| xml:int |
strEmailAddress | This is an "EmailAddress” field which will validate against "ActivityId" if it is a correct account to request the cancellation and use for auditing purposes. String(min 1 max 100) | xml:string |
|
The response body is of type ActivityItemCancelResponse.
Name | Description | Data Type |
---|---|---|
ActivityItemCancelResult | objActivityItemCancelReturn |
|
<?xml version="1.0" encoding="utf-8"?> <objActivityItemCancelReturn xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://pro-cloud.org/"> <intErrorId>0</intErrorId> <strErrorMsg /> <xmlDataSet> <NewDataSet xmlns=""> <ActivityItemCancel> <Column1>0</Column1> <Column2 /> </ActivityItemCancel> </NewDataSet> </xmlDataSet> </objActivityItemCancelReturn>